don't propagate the expose to the label. The expose handler for
authorMark McLoughlin <mark@skynet.ie>
Wed, 10 Mar 2004 19:11:59 +0000 (19:11 +0000)
committerMark McLoughlin <markmc@src.gnome.org>
Wed, 10 Mar 2004 19:11:59 +0000 (19:11 +0000)
2004-03-10  Mark McLoughlin  <mark@skynet.ie>

        * gtk/gtkexpander.c: (gtk_expander_expose): don't propagate
        the expose to the label. The expose handler for GtkContainer
        already does that. Fixes bug #136719. Reported by Dennis
        Cranston, exact cause nailed down by Owen.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkexpander.c

index ef3b6db3182af5feab7878cb4e8ae92279d67632..0d9a8a50ef5de27c5661cc9f130a1fd38155cb00 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-03-10  Mark McLoughlin  <mark@skynet.ie>
+
+       * gtk/gtkexpander.c: (gtk_expander_expose): don't propagate
+       the expose to the label. The expose handler for GtkContainer
+       already does that. Fixes bug #136719. Reported by Dennis
+       Cranston, exact cause nailed down by Owen.
+
 2004-03-10  Federico Mena Quintero  <federico@ximian.com>
 
        * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Use an
index ef3b6db3182af5feab7878cb4e8ae92279d67632..0d9a8a50ef5de27c5661cc9f130a1fd38155cb00 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-10  Mark McLoughlin  <mark@skynet.ie>
+
+       * gtk/gtkexpander.c: (gtk_expander_expose): don't propagate
+       the expose to the label. The expose handler for GtkContainer
+       already does that. Fixes bug #136719. Reported by Dennis
+       Cranston, exact cause nailed down by Owen.
+
 2004-03-10  Federico Mena Quintero  <federico@ximian.com>
 
        * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Use an
index ef3b6db3182af5feab7878cb4e8ae92279d67632..0d9a8a50ef5de27c5661cc9f130a1fd38155cb00 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-10  Mark McLoughlin  <mark@skynet.ie>
+
+       * gtk/gtkexpander.c: (gtk_expander_expose): don't propagate
+       the expose to the label. The expose handler for GtkContainer
+       already does that. Fixes bug #136719. Reported by Dennis
+       Cranston, exact cause nailed down by Owen.
+
 2004-03-10  Federico Mena Quintero  <federico@ximian.com>
 
        * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Use an
index ef3b6db3182af5feab7878cb4e8ae92279d67632..0d9a8a50ef5de27c5661cc9f130a1fd38155cb00 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-10  Mark McLoughlin  <mark@skynet.ie>
+
+       * gtk/gtkexpander.c: (gtk_expander_expose): don't propagate
+       the expose to the label. The expose handler for GtkContainer
+       already does that. Fixes bug #136719. Reported by Dennis
+       Cranston, exact cause nailed down by Owen.
+
 2004-03-10  Federico Mena Quintero  <federico@ximian.com>
 
        * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Use an
index ef3b6db3182af5feab7878cb4e8ae92279d67632..0d9a8a50ef5de27c5661cc9f130a1fd38155cb00 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-10  Mark McLoughlin  <mark@skynet.ie>
+
+       * gtk/gtkexpander.c: (gtk_expander_expose): don't propagate
+       the expose to the label. The expose handler for GtkContainer
+       already does that. Fixes bug #136719. Reported by Dennis
+       Cranston, exact cause nailed down by Owen.
+
 2004-03-10  Federico Mena Quintero  <federico@ximian.com>
 
        * gtk/gtkfilechooserdefault.c (list_mtime_data_func): Use an
index 4dfa1ba86efd2f62134a6543b6d66edf4f985860..01a8c8a3b62927d35f37a8de26806eb276818cf4 100644 (file)
@@ -848,11 +848,6 @@ gtk_expander_expose (GtkWidget      *widget,
       if (GTK_WIDGET_HAS_FOCUS (expander))
        gtk_expander_paint_focus (expander, &event->area);
 
-      if (expander->priv->label_widget)
-       gtk_container_propagate_expose (GTK_CONTAINER (widget),
-                                       expander->priv->label_widget,
-                                       event);
-
       GTK_WIDGET_CLASS (parent_class)->expose_event (widget, event);
     }